home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000293_news@columbia.edu _Fri May 12 11:37:37 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id LAA03245
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Fri, 12 May 2000 11:37:36 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA08347
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 12 May 2000 11:37:36 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id LAA20473
  10.     for kermit.misc@watsun.cc.columbia.edu; Fri, 12 May 2000 11:25:22 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: "Alan Rice" <alanrice@bigfoot.com>
  13. Subject: Re: Pause in build cku192.is5r3netjc
  14. Date: Fri, 12 May 2000 11:29:08 -0400
  15. Organization: Posted via Supernews, http://www.supernews.com
  16. Message-ID: <sho8hc69kcp91@corp.supernews.com>
  17. To: kermit.misc@columbia.edu
  18.  
  19. Frank,
  20.  
  21. After changing all the pause's in the script it chokes on input 5 {login:}.
  22. I would guess it the same sort of problem with the build. Any way around
  23. this problem?
  24.  
  25. Alan R
  26.  
  27.  
  28. Alan Rice <alanrice@bigfoot.com> wrote in message
  29. news:shnthjj9kcp182@corp.supernews.com...
  30. > Thanks Frank,
  31. >
  32. > Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote in message
  33. > news:8ff5r7$fvs$1@newsmaster.cc.columbia.edu...
  34. > > In article <shm6917tkcp167@corp.supernews.com>,
  35. > > Alan Rice <alanrice@bigfoot.com> wrote:
  36. > > : Upgrading some boxes to kermit 6 with build cku192.is5r3netjc and I
  37. > found
  38. > > : out that the pause command isn'y acting right.
  39. > > : When it is given from cmd line or take file like this : pause 2, it
  40. just
  41. > > : hangs there until you hit the enter key. I need the pauses in an
  42. > automated
  43. > > : process that runs great on kermit 5 but the bad dates that kermit 5
  44. > produces
  45. > > : on the get command are causing other problems. Anybody got any ideals
  46. on
  47. > > : what the problem or fix might be?
  48. > > :
  49. > > PAUSE just calls sleep(), which is a pretty standard UNIX system
  50. service.
  51. > > If it's not working in your build, it's because the build was done on a
  52. > > different platform than the one you actually have.  I'm afraid the only
  53. > > remedy is to build it directly on your platform, but that would require
  54. a
  55. > > C compiler, linker, and header files.
  56. > >
  57. > > If you can't do that, here's a shot in the dark: instead of PAUSE 2,
  58. try:
  59. > >
  60. > >   msleep 500
  61. > >   msleep 500
  62. > >   msleep 500
  63. > >   msleep 500
  64. > >
  65. > > MSLEEP calls a different system service, so it might work.
  66. > >
  67. > > - Frank
  68. >
  69. >
  70.  
  71.